4af9d592c5
I've followed the [upgrade guide](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md) and ran these two commands: ``` grep -e FactoryGirl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|FactoryGirl|FactoryBot|" grep -e factory_girl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|factory_girl|factory_bot|" ``` Signed-off-by: Rémy Coutable <remy@rymai.me>
18 lines
590 B
Ruby
18 lines
590 B
Ruby
require 'spec_helper'
|
|
|
|
describe RunnersHelper do
|
|
it "returns - not contacted yet" do
|
|
runner = FactoryBot.build :ci_runner
|
|
expect(runner_status_icon(runner)).to include("not connected yet")
|
|
end
|
|
|
|
it "returns offline text" do
|
|
runner = FactoryBot.build(:ci_runner, contacted_at: 1.day.ago, active: true)
|
|
expect(runner_status_icon(runner)).to include("Runner is offline")
|
|
end
|
|
|
|
it "returns online text" do
|
|
runner = FactoryBot.build(:ci_runner, contacted_at: 1.second.ago, active: true)
|
|
expect(runner_status_icon(runner)).to include("Runner is online")
|
|
end
|
|
end
|