Sha256: 0a91582b788f68b94bb66e15ada384a9bb6741ef468d0a7287d56f78597709e7
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
require 'spec_helper' # TODO: Move these specs to spec/actions_spec.rb describe TinyRails::Commands::Add do before do Dir.exist?('.tmp') ? FileUtils.rm_rf('.tmp/*') : Dir.mkdir('.tmp') @original_wd = Dir.pwd FileUtils.cd '.tmp' %w(.gitignore tiny_rails_controller.rb boot.rb Gemfile).each do |file| `touch #{file}` end end after { FileUtils.cd @original_wd } let(:output) do fixtures_path = "#{@original_wd}/spec/fixtures" fixtures = %W( #{fixtures_path}/sample_addon_1.rb ../spec/fixtures/sample_addon_2.rb ) bundled_addon = 'activerecord' output = capture(:stdout) { described_class.start([fixtures, bundled_addon, bundled_addon].flatten) } output.gsub(/\e\[(\d+)m/, '') end it 'works with full path to file' do output.should =~ /gemfile\s+from-sample-addon-1/ end it 'works with relative path to file' do output.should =~ /gemfile\s+from-sample-addon-2/ end it 'works with bundled addons' do output.should =~ /gemfile\s+activerecord/ end it 'applies addon scripts only once' do output.scan(/gemfile\s+activerecord/).should have(1).item end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tiny-rails-0.0.2 | spec/commands/add_spec.rb |