test/generators/component_generator_test.rb in ember-appkit-rails-0.4.0 vs test/generators/component_generator_test.rb in ember-appkit-rails-0.5.0
- old
+ new
@@ -9,43 +9,43 @@
setup :prepare_destination
test "default_component" do
run_generator ["PostChart"]
- assert_file "#{app_path}/components/post-chart.js.es6"
+ assert_file "#{app_path}/components/post-chart.es6"
assert_file "#{app_path}/templates/components/post-chart.hbs"
end
test "Assert files are properly created (CamelCase)" do
run_generator %w(PostChart)
- assert_file "#{app_path}/components/post-chart.js.es6"
+ assert_file "#{app_path}/components/post-chart.es6"
assert_file "#{app_path}/templates/components/post-chart.hbs"
end
test "Assert object names are properly created with CamelCase name" do
run_generator %w(PostChart)
- assert_file "#{app_path}/components/post-chart.js.es6"
+ assert_file "#{app_path}/components/post-chart.es6"
assert_file "#{app_path}/templates/components/post-chart.hbs"
end
test "Assert files are properly created (lower-case)" do
run_generator %w(post-chart)
- assert_file "#{app_path}/components/post-chart.js.es6"
+ assert_file "#{app_path}/components/post-chart.es6"
assert_file "#{app_path}/templates/components/post-chart.hbs"
end
test "Assert object names are properly created with lower-case name" do
run_generator %w(post-chart)
- assert_file "#{app_path}/components/post-chart.js.es6"
+ assert_file "#{app_path}/components/post-chart.es6"
assert_file "#{app_path}/templates/components/post-chart.hbs"
end
test "Uses config.ember.appkit.paths.app" do
custom_path = app_path("custom")
with_config paths: {app: custom_path} do
run_generator ["PostChart"]
- assert_file "#{custom_path}/components/post-chart.js.es6"
+ assert_file "#{custom_path}/components/post-chart.es6"
assert_file "#{custom_path}/templates/components/post-chart.hbs"
end
end
end