forked from will/crystal-pg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is an exploratory effort to support will#164 It is not ready for merging, but I wanted to to open it for discussion and review. Signed-off-by: Mike Fiedler <miketheman@gmail.com>
- Loading branch information
1 parent
650b16f
commit e883b64
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
require "../../spec_helper" | ||
|
||
describe PG::Decoders do | ||
describe "int4range" do | ||
test_decode "exclusive", "'[10,20)'::int4range", Range.new(10, 20) | ||
test_decode "exclusive", "'(10,20]'::int4range", Range.new(11, 21) | ||
test_decode "inclusive", "'[10,20]'::int4range", Range.new(10, 21) | ||
test_decode "inclusive", "'[10,20)'::int4range", Range.new(10, 20) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters