fixpoints 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fad78acf149e5b3740844ca088969ddcf7e377a10d06f224be8b4f6c400a2b9c
4
- data.tar.gz: 9f3cf9819a8e4d549b3e17b6556888070dbcb2d091bde9b8d27b104246c183f2
3
+ metadata.gz: 3ef08ea7ece7fead58adea51cc099a9fdf2b54db15af1b54406a4123bafd9f58
4
+ data.tar.gz: 3adb38547c45cc8bcaf2c105ba22a60c5eceb1caeeb1de423c4a27524cf42e20
5
5
  SHA512:
6
- metadata.gz: 8f9618522b5e02bbcff8d06fc94df4da23f7dc35bf8ff0536c91483a66f06375f3a9e203b06e92707c1a1f0e2693a34b3a88c641eda650b3511d92539eadb985
7
- data.tar.gz: 3a7294db258a4cae2e790e435ee0d2796914d77a877d24a6c354716a9ef87402622ada27734b9f360f7d5dae6e6d45571b9e3af44093ca391834c6732f6263a1
6
+ metadata.gz: b2de749871dc8108723bb6ff7187526ed30b4a4d920fa8562bb611e34373a2666f2053ab247d3f6280a6968b161e4057fb4dfae6732989a8feb215838b15774f
7
+ data.tar.gz: 9e6c9dd9d176073a3a930e3228ec10dd0f38a5ab811c9aba1fa03642401ee1a8c6ad47a117f0c649288af71acff1028c2f14007b1929ccc3bc88bbf20c4610bb
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fixpoints (0.2.2)
4
+ fixpoints (0.2.3)
5
5
  activerecord (>= 5.0.0)
6
6
  rspec
7
7
 
@@ -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."
@@ -1,3 +1,3 @@
1
1
  module Fixpoints
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
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.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: 2020-10-07 00:00:00.000000000 Z
11
+ date: 2021-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord