spec/capucine/capucine_spec.rb in capucine-0.2.3 vs spec/capucine/capucine_spec.rb in capucine-0.2.4

- old
+ new

@@ -130,50 +130,8 @@ FileUtils.rm_r @cap.settings.working_dir Dir.chdir('..') end - it '#new, set coffee, compile with c:sass ONLY' do - @cap.run_command(['n']) - - Dir.chdir('capucine') - - @cap.settings.conf['coffee'].should eq(false) - - @cap.run_command(['c:sass', @config_user_coffee]) - @cap.settings.conf['coffee'].should eq(true) - - coffee = File.expand_path(File.join @cap.settings.working_dir, 'public/js_generated/app.js') - - File.exist?(coffee).should eq(false) - - FileUtils.rm_r @cap.settings.working_dir - - Dir.chdir('..') - - end - - it '#new, set coffee, compile with c:coffee ONLY' do - @cap.run_command(['n']) - - Dir.chdir('capucine') - - @cap.settings.conf['coffee'].should eq(false) - - FileUtils.rm File.expand_path(File.join @cap.settings.working_dir, 'public/css_generated/screen.css') - @cap.run_command(['c:coffee', @config_user_coffee]) - - @cap.settings.conf['sass'].should eq(true) - @cap.settings.conf['coffee'].should eq(true) - - scss = File.expand_path(File.join @cap.settings.working_dir, 'public/css_generated/screen.css') - - File.exist?(scss).should eq(false) - - FileUtils.rm_r @cap.settings.working_dir - Dir.chdir('..') - - end - end \ No newline at end of file