aboutsummaryrefslogtreecommitdiffstats
path: root/test/stubs/room.rb
blob: 246d6a98af53593f6b9cd959270f67285fc0a7a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Room
  attr_reader :id, :name

  def initialize(id, name='Campfire')
    @id = id
    @name = name
  end

  def to_global_id
    "Room##{id}-#{name}"
  end

  def to_gid_param
    to_global_id.to_param
  end
end