Commit 10cf1050 authored by Kamil Trzcinski's avatar Kamil Trzcinski

Fix: helpers/ci/runners_helper_spec.rb

parent 5f315bd5
......@@ -2,17 +2,17 @@ require 'spec_helper'
describe Ci::RunnersHelper do
it "returns - not contacted yet" do
runner = FactoryGirl.build :runner
runner_status_icon(runner).should include("not connected yet")
runner = FactoryGirl.build :ci_runner
expect(runner_status_icon(runner)).to include("not connected yet")
end
it "returns offline text" do
runner = FactoryGirl.build(:runner, contacted_at: 1.day.ago, active: true)
runner_status_icon(runner).should include("Runner is offline")
runner = FactoryGirl.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 = FactoryGirl.build(:runner, contacted_at: 1.hour.ago, active: true)
runner_status_icon(runner).should include("Runner is online")
runner = FactoryGirl.build(:ci_runner, contacted_at: 1.hour.ago, active: true)
expect(runner_status_icon(runner)).to include("Runner is online")
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment