spec/generators/photo_generator_spec.rb in redde-0.1.10 vs spec/generators/photo_generator_spec.rb in redde-0.1.11
- old
+ new
@@ -1,33 +1,32 @@
require 'spec_helper'
describe Redde::Generators::PhotoGenerator do
include GeneratorSpec::TestCase
- destination File.expand_path("../../../tmp", __FILE__)
+ destination File.expand_path('../../../tmp', __FILE__)
before(:all) do
prepare_destination
run_generator
end
after(:all) do
FileUtils.rm_rf 'tmp'
end
- it "Generates controller" do
- assert_file "app/controllers/admin/photos_controller.rb"
+ it 'Generates controller' do
+ assert_file 'app/controllers/admin/photos_controller.rb'
end
- it "Generates views" do
- assert_directory "app/views/admin/photos"
+ it 'Generates views' do
+ assert_directory 'app/views/admin/photos'
end
- it "Generates model" do
- assert_file "app/models/photo.rb"
+ it 'Generates model' do
+ assert_file 'app/models/photo.rb'
end
- it "Generates migration" do
- files = Dir["tmp/db/migrate/*.rb"]
- expect(files.map(&:to_s).join(" ").index("create_photos")).to eq 30
+ it 'Generates migration' do
+ files = Dir['tmp/db/migrate/*.rb']
+ expect(files.map(&:to_s).join(' ').index('create_photos')).to eq 30
end
-
-end
\ No newline at end of file
+end