File: create.rb

package info (click to toggle)
ruby-ramaze 2012.12.08-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,060 kB
  • ctags: 1,200
  • sloc: ruby: 10,446; makefile: 8
file content (28 lines) | stat: -rw-r--r-- 740 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require File.expand_path('../../../../spec/helper', __FILE__)
require __DIR__('../../../lib/ramaze/bin/runner')
require 'fileutils'

describe('Ramaze::Bin::Create') do

  it('Show a help message') do
    help = `#{Ramaze::BINPATH} create -h`.strip

    help.include?(Ramaze::Bin::Create::Banner).should === true
  end

  it('Warn when no name is given') do
    output = `#{Ramaze::BINPATH} create 2>&1`.strip

    output.should === 'You need to specify a name for your application'
  end

  it('Create a new application') do
    output = `#{Ramaze::BINPATH} create /tmp/ramaze`.strip

    File.directory?('/tmp/ramaze').should    === true
    File.exist?('/tmp/ramaze/app.rb').should === true

    FileUtils.rm_rf('/tmp/ramaze')
  end

end