Sha256: aad6528c1216ce973ce11bc649eebdb5796054a4b49736442048f7a93ac15622
Contents?: true
Size: 1.43 KB
Versions: 8
Compression:
Stored size: 1.43 KB
Contents
require 'test_helper' require 'rails/generators/test_case' require 'rails/generators/concept/concept_generator' class ConceptGeneratorTest < Rails::Generators::TestCase destination File.expand_path('../../tmp', File.dirname(__FILE__)) setup :prepare_destination tests Rails::Generators::ConceptGenerator test '[erb] standard assets, show view' do run_generator %w(song -e erb) assert_file 'app/concepts/song/cell.rb', /class Song::Cell < Cell::Concept/ assert_file 'app/concepts/song/cell.rb', /def show/ assert_file 'app/concepts/song/views/show.erb', %r{app/concepts/song/views/show\.erb} end test "test unit test" do run_generator %w(song -t test_unit) # file contains #concept(..) call. assert_file 'test/concepts/song/cell_test.rb', /concept\("song\/cell"\).\(:show\)/ end test '[haml] standard assets, show view' do run_generator %w(song -e haml) assert_file 'app/concepts/song/cell.rb', /class Song::Cell < Cell::Concept/ assert_file 'app/concepts/song/cell.rb', /def show/ assert_file 'app/concepts/song/views/show.haml', %r{app/concepts/song/views/show\.haml} end test '[slim] standard assets, show view' do run_generator %w(song -e slim) assert_file 'app/concepts/song/cell.rb', /class Song::Cell < Cell::Concept/ assert_file 'app/concepts/song/cell.rb', /def show/ assert_file 'app/concepts/song/views/show.slim', %r{app/concepts/song/views/show\.slim} end end
Version data entries
8 entries across 8 versions & 1 rubygems