Skip to content

Commit

Permalink
Extra requires for travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariovisic committed Jul 31, 2011
1 parent 89f049b commit 91bea61
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/support/models/user.rb
@@ -1,3 +1,5 @@
require './spec/support/models/base_user'

class User < BaseUser

validates :avatar, :has_face => true
Expand Down
2 changes: 2 additions & 0 deletions spec/support/models/user_with_allow_blank.rb
@@ -1,3 +1,5 @@
require './spec/support/models/base_user'

class UserWithAllowBlank < BaseUser
validates :avatar, :has_face => true, :allow_blank => true
end
2 changes: 2 additions & 0 deletions spec/support/models/user_with_allow_nil.rb
@@ -1,3 +1,5 @@
require './spec/support/models/base_user'

class UserWithAllowNil < BaseUser
validates :avatar, :has_face => true, :allow_nil => true
end

0 comments on commit 91bea61

Please sign in to comment.