debian-mirror-gitlab/spec/helpers/runners_helper_spec.rb

19 lines
593 B
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
require 'spec_helper'
2015-10-24 18:46:33 +05:30
describe RunnersHelper do
2015-09-25 12:07:36 +05:30
it "returns - not contacted yet" do
runner = FactoryGirl.build :ci_runner
expect(runner_status_icon(runner)).to include("not connected yet")
end
it "returns offline text" do
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
2015-10-24 18:46:33 +05:30
runner = FactoryGirl.build(:ci_runner, contacted_at: 1.second.ago, active: true)
2015-09-25 12:07:36 +05:30
expect(runner_status_icon(runner)).to include("Runner is online")
end
end