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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
require 'test_helper'
class ScaffoldGeneratorTest < Sass::Rails::TestCase
test "scss files are generated during scaffold generation of scss projects" do
within_rails_app "scss_project" do
generate_scaffold
assert_file_exists "app/assets/stylesheets/foos.css.scss"
assert_file_exists "app/assets/stylesheets/scaffolds.css.scss"
assert_not_output /conflict/
end
end
test "sass files are generated during scaffold generation of sass projects" do
within_rails_app "sass_project" do
generate_scaffold
assert_file_exists "app/assets/stylesheets/foos.css.sass"
assert_file_exists "app/assets/stylesheets/scaffolds.css.sass"
assert_not_output /conflict/
end
end
test "scss files are generated during scaffold generation of a engine project, if is called with --stylesheet-engine=scss" do
within_rails_app "engine_project" do
generate_scaffold "--stylesheet-engine=scss"
assert_file_exists "app/assets/stylesheets/engine_project/foos.css.scss"
assert_file_exists "app/assets/stylesheets/scaffolds.css.scss"
assert_not_output /conflict/
end
end
test "sass files are generated during scaffold generation of a engine project, if is called with --stylesheet-engine=sass" do
within_rails_app "engine_project" do
generate_scaffold "--stylesheet-engine=sass"
assert_file_exists "app/assets/stylesheets/engine_project/foos.css.sass"
assert_file_exists "app/assets/stylesheets/scaffolds.css.sass"
assert_not_output /conflict/
end
end
# DISABLED because we've removed the feature for now.
# test "scss template has correct dasherized css class for namespaced controllers" do
# within_rails_app "scss_project" do
# runcmd "rails generate controller foo/bar"
# assert_file_exists "app/assets/stylesheets/foo/bar.css.scss"
# assert_match /\.foo-bar/, File.read("app/assets/stylesheets/foo/bar.css.scss")
# end
# end
#
# test "sass template has correct dasherized css class for namespaced controllers" do
# within_rails_app "sass_project" do
# runcmd "rails generate controller foo/bar"
# assert_file_exists "app/assets/stylesheets/foo/bar.css.sass"
# assert_match /\.foo-bar/, File.read("app/assets/stylesheets/foo/bar.css.sass")
# end
# end
private
def generate_scaffold(args = nil)
runcmd "bundle exec rails generate scaffold foo #{args}"
end
end
|