mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
How far do we actually get into the test
This commit is contained in:
parent
6a51925d51
commit
e246f7a1a5
3 changed files with 85 additions and 84 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -42,4 +42,4 @@ jobs:
|
|||
- name: Setup project
|
||||
run: bundle install
|
||||
- name: Run test
|
||||
run: bundle exec rake
|
||||
run: bundle exec cucumber features/reloading.feature
|
||||
|
|
1
.tool-versions
Normal file
1
.tool-versions
Normal file
|
@ -0,0 +1 @@
|
|||
ruby 3.0.2
|
|
@ -47,89 +47,89 @@ Feature: automatically reloading factory_bot definitions
|
|||
And I run `bundle binstubs bundler spring --force` with a clean environment
|
||||
And I run `bin/spring binstub --all` with a clean environment
|
||||
And I run `bin/rails test` with Spring enabled
|
||||
And I append to "app/models/user.rb" with:
|
||||
"""
|
||||
# User model edited
|
||||
"""
|
||||
And I run `bin/rails test` with Spring enabled
|
||||
And I run `bin/spring stop` with a clean environment
|
||||
# And I append to "app/models/user.rb" with:
|
||||
# """
|
||||
# # User model edited
|
||||
# """
|
||||
# And I run `bin/rails test` with Spring enabled
|
||||
# And I run `bin/spring stop` with a clean environment
|
||||
Then the output should contain "1 runs, 1 assertions"
|
||||
And the output should not contain "Failure:"
|
||||
|
||||
Scenario: When using factory_bot_rails together with Spring
|
||||
I want changes to my factory_bot definitions to trigger a reload
|
||||
So that I can use my updated definitions without stopping spring
|
||||
|
||||
When I write to "app/models/user.rb" with:
|
||||
"""
|
||||
class User < ActiveRecord::Base
|
||||
end
|
||||
"""
|
||||
And I write to "test/factories.rb" with:
|
||||
"""
|
||||
# Empty definition file to be picked up by the file watcher
|
||||
|
||||
"""
|
||||
And I run `bundle binstubs bundler spring --force` with a clean environment
|
||||
And I run `bin/spring binstub --all` with a clean environment
|
||||
And I run `bin/rails test` with Spring enabled
|
||||
And I append to "test/factories.rb" with:
|
||||
"""
|
||||
FactoryBot.define do
|
||||
factory :author, class: User do
|
||||
name { "Frank" }
|
||||
end
|
||||
end
|
||||
"""
|
||||
And I write to "test/unit/user_test.rb" with:
|
||||
"""
|
||||
require 'test_helper'
|
||||
|
||||
class UserTest < ActiveSupport::TestCase
|
||||
test "user factory" do
|
||||
author = FactoryBot.create(:author)
|
||||
|
||||
assert_equal author.class.object_id, User.object_id
|
||||
end
|
||||
end
|
||||
"""
|
||||
And I run `bin/rails test` with Spring enabled
|
||||
And I run `bin/spring stop` with a clean environment
|
||||
Then the output should contain "1 runs, 1 assertions"
|
||||
And the output should not contain "Failure:"
|
||||
|
||||
Scenario: Initializing the reloader with I18n support
|
||||
When I write to "app/models/user.rb" with:
|
||||
"""
|
||||
class User
|
||||
TRANSLATION = I18n.translate("translation_key")
|
||||
end
|
||||
"""
|
||||
And I write to "config/locales/en.yml" with:
|
||||
"""
|
||||
en:
|
||||
translation_key: "translation_value"
|
||||
"""
|
||||
And I write to "test/factories.rb" with:
|
||||
"""
|
||||
FactoryBot.define do
|
||||
factory :user do
|
||||
User::TRANSLATION
|
||||
end
|
||||
end
|
||||
"""
|
||||
And I write to "test/unit/user_test.rb" with:
|
||||
"""
|
||||
require 'test_helper'
|
||||
|
||||
class UserTest < ActiveSupport::TestCase
|
||||
test "eser factory" do
|
||||
user = FactoryBot.build(:user)
|
||||
|
||||
assert_equal "translation_value", User::TRANSLATION
|
||||
end
|
||||
end
|
||||
"""
|
||||
And I run `bin/rails test` with a clean environment
|
||||
Then the output should contain "1 runs, 1 assertions"
|
||||
And the output should not contain "Failure:"
|
||||
# Scenario: When using factory_bot_rails together with Spring
|
||||
# I want changes to my factory_bot definitions to trigger a reload
|
||||
# So that I can use my updated definitions without stopping spring
|
||||
#
|
||||
# When I write to "app/models/user.rb" with:
|
||||
# """
|
||||
# class User < ActiveRecord::Base
|
||||
# end
|
||||
# """
|
||||
# And I write to "test/factories.rb" with:
|
||||
# """
|
||||
# # Empty definition file to be picked up by the file watcher
|
||||
#
|
||||
# """
|
||||
# And I run `bundle binstubs bundler spring --force` with a clean environment
|
||||
# And I run `bin/spring binstub --all` with a clean environment
|
||||
# And I run `bin/rails test` with Spring enabled
|
||||
# And I append to "test/factories.rb" with:
|
||||
# """
|
||||
# FactoryBot.define do
|
||||
# factory :author, class: User do
|
||||
# name { "Frank" }
|
||||
# end
|
||||
# end
|
||||
# """
|
||||
# And I write to "test/unit/user_test.rb" with:
|
||||
# """
|
||||
# require 'test_helper'
|
||||
#
|
||||
# class UserTest < ActiveSupport::TestCase
|
||||
# test "user factory" do
|
||||
# author = FactoryBot.create(:author)
|
||||
#
|
||||
# assert_equal author.class.object_id, User.object_id
|
||||
# end
|
||||
# end
|
||||
# """
|
||||
# And I run `bin/rails test` with Spring enabled
|
||||
# And I run `bin/spring stop` with a clean environment
|
||||
# Then the output should contain "1 runs, 1 assertions"
|
||||
# And the output should not contain "Failure:"
|
||||
#
|
||||
# Scenario: Initializing the reloader with I18n support
|
||||
# When I write to "app/models/user.rb" with:
|
||||
# """
|
||||
# class User
|
||||
# TRANSLATION = I18n.translate("translation_key")
|
||||
# end
|
||||
# """
|
||||
# And I write to "config/locales/en.yml" with:
|
||||
# """
|
||||
# en:
|
||||
# translation_key: "translation_value"
|
||||
# """
|
||||
# And I write to "test/factories.rb" with:
|
||||
# """
|
||||
# FactoryBot.define do
|
||||
# factory :user do
|
||||
# User::TRANSLATION
|
||||
# end
|
||||
# end
|
||||
# """
|
||||
# And I write to "test/unit/user_test.rb" with:
|
||||
# """
|
||||
# require 'test_helper'
|
||||
#
|
||||
# class UserTest < ActiveSupport::TestCase
|
||||
# test "eser factory" do
|
||||
# user = FactoryBot.build(:user)
|
||||
#
|
||||
# assert_equal "translation_value", User::TRANSLATION
|
||||
# end
|
||||
# end
|
||||
# """
|
||||
# And I run `bin/rails test` with a clean environment
|
||||
# Then the output should contain "1 runs, 1 assertions"
|
||||
# And the output should not contain "Failure:"
|
||||
|
|
Loading…
Reference in a new issue