debian-mirror-gitlab/spec/helpers/ci/runners_helper_spec.rb
2015-09-25 12:07:36 +05:30

18 lines
595 B
Ruby

require 'spec_helper'
describe Ci::RunnersHelper do
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
runner = FactoryGirl.build(:ci_runner, contacted_at: 1.hour.ago, active: true)
expect(runner_status_icon(runner)).to include("Runner is online")
end
end