debian-mirror-gitlab/spec/models/broadcast_message_spec.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

2014-09-02 14:37:02 +02:00
# == Schema Information
#
# Table name: broadcast_messages
#
# id :integer not null, primary key
# message :text not null
# starts_at :datetime
# ends_at :datetime
# alert_type :integer
# created_at :datetime
# updated_at :datetime
# color :string(255)
# font :string(255)
#
require 'spec_helper'
describe BroadcastMessage do
subject { create(:broadcast_message) }
2015-04-26 09:18:37 +02:00
it { is_expected.to be_valid }
2014-09-02 14:37:02 +02:00
describe :current do
it "should return last message if time match" do
broadcast_message = create(:broadcast_message, starts_at: Time.now.yesterday, ends_at: Time.now.tomorrow)
2015-04-26 09:18:37 +02:00
expect(BroadcastMessage.current).to eq(broadcast_message)
2014-09-02 14:37:02 +02:00
end
it "should return nil if time not come" do
broadcast_message = create(:broadcast_message, starts_at: Time.now.tomorrow, ends_at: Time.now + 2.days)
2015-04-26 09:18:37 +02:00
expect(BroadcastMessage.current).to be_nil
2014-09-02 14:37:02 +02:00
end
it "should return nil if time has passed" do
broadcast_message = create(:broadcast_message, starts_at: Time.now - 2.days, ends_at: Time.now.yesterday)
2015-04-26 09:18:37 +02:00
expect(BroadcastMessage.current).to be_nil
2014-09-02 14:37:02 +02:00
end
end
end