about summary refs log tree commit diff
path: root/spec/models/block_spec.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-04-05 03:31:45 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-04-05 03:31:45 +0200
commitccb6a658fd1a2e596c95d5b8e7a39f72a5f5b14b (patch)
tree7b846b51e3c91fb93aa379361dfe7a811bf5a01c /spec/models/block_spec.rb
parent94d00f278819d34ef97d59d17eb289e9be217dfe (diff)
parent667ffafef8c8b7956cdd31b8f65d5e82778211d8 (diff)
Merge branch 'fakenine-add_more_tests_to_models'
Diffstat (limited to 'spec/models/block_spec.rb')
-rw-r--r--spec/models/block_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/models/block_spec.rb b/spec/models/block_spec.rb
index 6862de6fc..cabb41c3e 100644
--- a/spec/models/block_spec.rb
+++ b/spec/models/block_spec.rb
@@ -1,5 +1,22 @@
 require 'rails_helper'
 
 RSpec.describe Block, type: :model do
+  describe 'validations' do
+    it 'has a valid fabricator' do
+      block = Fabricate.build(:block)
+      expect(block).to be_valid
+    end
 
+    it 'is invalid without an account' do
+      block = Fabricate.build(:block, account: nil)
+      block.valid?
+      expect(block).to model_have_error_on_field(:account)
+    end
+
+    it 'is invalid without a target_account' do
+      block = Fabricate.build(:block, target_account: nil)
+      block.valid?
+      expect(block).to model_have_error_on_field(:target_account)
+    end
+  end
 end