aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/models')
-rw-r--r--activerecord/test/models/traffic_light.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/activerecord/test/models/traffic_light.rb b/activerecord/test/models/traffic_light.rb
deleted file mode 100644
index f8cfddbef9..0000000000
--- a/activerecord/test/models/traffic_light.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-class TrafficLight < ActiveRecord::Base
- include ActiveRecord::StateMachine
-
- state_machine do
- state :off
-
- state :red
- state :green
- state :yellow
-
- event :red_on do
- transitions :to => :red, :from => [:yellow]
- end
-
- event :green_on do
- transitions :to => :green, :from => [:red]
- end
-
- event :yellow_on do
- transitions :to => :yellow, :from => [:green]
- end
-
- event :reset do
- transitions :to => :red, :from => [:off]
- end
- end
-end