メインコンテンツまでスキップ

トランザクションの例

デフォルトでは、RSpecは各個別の例をトランザクションで実行します。

また、設定プロパティ 'use_transactional_examples' を使用して、トランザクションを明示的に有効化または無効化することもできます。

トランザクションで実行する(デフォルト)

次の内容で "spec/models/widget_spec.rb" という名前のファイルがあるとします:

require "rails_helper"

RSpec.describe Widget, type: :model do
it "has none to begin with" do
expect(Widget.count).to eq 0
end

it "has one after adding one" do
Widget.create
expect(Widget.count).to eq 1
end

it "has none after one was created in a previous example" do
expect(Widget.count).to eq 0
end
end

When I run rspec spec/models/widget_spec.rb

Then すべての例がパスするはずです。

トランザクションで実行する(明示的)

次の内容で "spec/models/widget_spec.rb" という名前のファイルがあるとします:

require "rails_helper"

RSpec.configure do |c|
c.use_transactional_examples = true
end

RSpec.describe Widget, type: :model do
it "has none to begin with" do
expect(Widget.count).to eq 0
end

it "has one after adding one" do
Widget.create
expect(Widget.count).to eq 1
end

it "has none after one was created in a previous example" do
expect(Widget.count).to eq 0
end
end

When I run rspec spec/models/widget_spec.rb

Then すべての例がパスするはずです。

トランザクションを無効化する(明示的)

次の内容で "spec/models/widget_spec.rb" という名前のファイルがあるとします:

require "rails_helper"

RSpec.configure do |c|
c.use_transactional_examples = false
c.order = "defined"
end

RSpec.describe Widget, type: :model do
it "has none to begin with" do
expect(Widget.count).to eq 0
end

it "has one after adding one" do
Widget.create
expect(Widget.count).to eq 1
end

it "has one after one was created in a previous example" do
expect(Widget.count).to eq 1
end

after(:all) { Widget.destroy_all }
end

When I run rspec spec/models/widget_spec.rb

Then すべての例がパスするはずです。

フィクスチャを使用してトランザクションで実行する

次の内容で "spec/models/thing_spec.rb" という名前のファイルがあるとします:

require "rails_helper"

RSpec.describe Thing, type: :model do
fixtures :things
it "fixture method defined" do
things(:one)
end
end

次の内容で "spec/fixtures/things.yml" という名前のファイルがあるとします:

one:
name: MyString

When I run rspec spec/models/thing_spec.rb

Then すべての例がパスするはずです。