fixpoints 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/fixpoint_test_helpers.rb +0 -2
- data/lib/fixpoints/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ef08ea7ece7fead58adea51cc099a9fdf2b54db15af1b54406a4123bafd9f58
|
|
4
|
+
data.tar.gz: 3adb38547c45cc8bcaf2c105ba22a60c5eceb1caeeb1de423c4a27524cf42e20
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2de749871dc8108723bb6ff7187526ed30b4a4d920fa8562bb611e34373a2666f2053ab247d3f6280a6968b161e4057fb4dfae6732989a8feb215838b15774f
|
|
7
|
+
data.tar.gz: 9e6c9dd9d176073a3a930e3228ec10dd0f38a5ab811c9aba1fa03642401ee1a8c6ad47a117f0c649288af71acff1028c2f14007b1929ccc3bc88bbf20c4610bb
|
data/Gemfile.lock
CHANGED
|
@@ -35,8 +35,6 @@ module FixpointTestHelpers
|
|
|
35
35
|
db_records = database_fp.records_for_table(table_name, ignored_columns)
|
|
36
36
|
fp_records = fixpoint_fp.records_for_table(table_name, ignored_columns)
|
|
37
37
|
|
|
38
|
-
# if a table is present in a fixpoint, there must be records in it because empty tables are stripped from fixpoints
|
|
39
|
-
expect(db_records).not_to be_empty, "#{table_name} not in database, but in fixpoint"
|
|
40
38
|
expect(fp_records).not_to be_empty, "#{table_name} not in fixpoint, but in database"
|
|
41
39
|
# we assume that the order of records returned by SELECT is stable (so we do not do any sorting)
|
|
42
40
|
expect(db_records).to eq(fp_records), "Database records for table \"#{table_name}\" did not match fixpoint \"#{fixname}\". Consider removing the fixpoint and re-running the test if the change is intended."
|
data/lib/fixpoints/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fixpoints
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Rothe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|