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

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

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