mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
Merged branch ci-format-check into master
This commit is contained in:
commit
4ddaf9df53
4 changed files with 13 additions and 16 deletions
|
@ -1 +1,4 @@
|
|||
language: crystal
|
||||
script:
|
||||
- crystal spec
|
||||
- crystal tool format --check
|
||||
|
|
|
@ -4,40 +4,39 @@ require "base64"
|
|||
class SimpleMapping
|
||||
DB.mapping({
|
||||
c0: Int32,
|
||||
c1: String
|
||||
c1: String,
|
||||
})
|
||||
end
|
||||
|
||||
class NonStrictMapping
|
||||
DB.mapping({
|
||||
c1: Int32,
|
||||
c2: String
|
||||
c2: String,
|
||||
}, strict: false)
|
||||
end
|
||||
|
||||
class MappingWithDefaults
|
||||
DB.mapping({
|
||||
c0: { type: Int32, default: 10 },
|
||||
c1: { type: String, default: "c" },
|
||||
c0: {type: Int32, default: 10},
|
||||
c1: {type: String, default: "c"},
|
||||
})
|
||||
end
|
||||
|
||||
class MappingWithNilables
|
||||
DB.mapping({
|
||||
c0: { type: Int32, nilable: true, default: 10 },
|
||||
c1: { type: String, nilable: true },
|
||||
c0: {type: Int32, nilable: true, default: 10},
|
||||
c1: {type: String, nilable: true},
|
||||
})
|
||||
end
|
||||
|
||||
class MappingWithKeys
|
||||
DB.mapping({
|
||||
foo: { type: Int32, key: "c0" },
|
||||
bar: { type: String, key: "c1" },
|
||||
foo: {type: Int32, key: "c0"},
|
||||
bar: {type: String, key: "c1"},
|
||||
})
|
||||
end
|
||||
|
||||
class MappingWithConverter
|
||||
|
||||
module Base64Converter
|
||||
def self.from_rs(rs)
|
||||
Base64.decode(rs.read(String))
|
||||
|
@ -45,8 +44,8 @@ class MappingWithConverter
|
|||
end
|
||||
|
||||
DB.mapping({
|
||||
c0: { type: Slice(UInt8), converter: MappingWithConverter::Base64Converter },
|
||||
c1: { type: String },
|
||||
c0: {type: Slice(UInt8), converter: MappingWithConverter::Base64Converter},
|
||||
c1: {type: String},
|
||||
})
|
||||
end
|
||||
|
||||
|
@ -69,7 +68,6 @@ macro expect_mapping(query, t, values)
|
|||
end
|
||||
|
||||
describe "DB.mapping" do
|
||||
|
||||
it "should initialize a simple mapping" do
|
||||
expect_mapping("1,a", SimpleMapping, {c0: 1, c1: "a"})
|
||||
end
|
||||
|
@ -149,5 +147,4 @@ describe "DB.mapping" do
|
|||
objs[1].c1.should eq("b")
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
module DB
|
||||
|
||||
class Error < Exception
|
||||
end
|
||||
|
||||
class MappingException < Exception
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
module DB
|
||||
|
||||
# Empty module used for marking a class as supporting DB:Mapping
|
||||
module Mappable; end
|
||||
|
||||
|
|
Loading…
Reference in a new issue