aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/topic.rb
blob: 1350aa17e7125ec26f128b0db0dcddc073f78fb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
class Topic < ActiveRecord::Base
  def condition_is_true
    true
  end

  def condition_is_true_but_its_not
    false
  end
end