diff --git a/features/mock_framework_integration/use_flexmock.feature b/features/mock_framework_integration/use_flexmock.feature index ab25a52184..261832e5c2 100644 --- a/features/mock_framework_integration/use_flexmock.feature +++ b/features/mock_framework_integration/use_flexmock.feature @@ -9,7 +9,7 @@ Feature: mock with flexmock config.mock_framework = :flexmock end - describe "mocking with RSpec" do + describe "mocking with Flexmock" do it "passes when it should" do receiver = flexmock('receiver') receiver.should_receive(:message).once @@ -27,7 +27,7 @@ Feature: mock with flexmock config.mock_framework = :flexmock end - describe "mocking with RSpec" do + describe "mocking with Flexmock" do it "fails when it should" do receiver = flexmock('receiver') receiver.should_receive(:message).once