aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_binary.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/nodes/test_binary.rb')
-rw-r--r--test/nodes/test_binary.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/nodes/test_binary.rb b/test/nodes/test_binary.rb
deleted file mode 100644
index ef23a3930b..0000000000
--- a/test/nodes/test_binary.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-# frozen_string_literal: true
-require 'helper'
-
-module Arel
- module Nodes
- describe 'Binary' do
- describe '#hash' do
- it 'generates a hash based on its value' do
- eq = Equality.new('foo', 'bar')
- eq2 = Equality.new('foo', 'bar')
- eq3 = Equality.new('bar', 'baz')
-
- assert_equal eq.hash, eq2.hash
- refute_equal eq.hash, eq3.hash
- end
-
- it 'generates a hash specific to its class' do
- eq = Equality.new('foo', 'bar')
- neq = NotEqual.new('foo', 'bar')
-
- refute_equal eq.hash, neq.hash
- end
- end
- end
- end
-end