rspec-xlsx_matchers 0.1.5 → 0.1.6
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3194c4fdcb2c56345d805ec5fc8a2e14d80311363738c155e1bef5d56d63929c
|
4
|
+
data.tar.gz: 9cbd5ed284576fa3482138931566c491ad906bc4bfb4311a0cdecfd1c0e30bdd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fd3eda4f88b0a0a7af9048f8d3aa8376c1a9cc2338cf2a09db2030e8715463e27addff64bc0fedf7ebb37b7c8ba724cd7e9af1c08000727d6efd0dcdfa29a99
|
7
|
+
data.tar.gz: eda173dc8ccc0052bc66fb5013a206c03f25cd11cc5753bfcd622b52ebc5d9c2fc3dc14279f28300e45f244a5da119c245627a5230e6b71de5961f307ab52f7b
|
data/lib/rspec/xlsx_matchers.rb
CHANGED
@@ -12,7 +12,7 @@ require_relative "xlsx_matchers/columns"
|
|
12
12
|
require_relative "xlsx_matchers/empty_row"
|
13
13
|
require_relative "xlsx_matchers/cells"
|
14
14
|
require_relative "xlsx_matchers/cell_value"
|
15
|
-
require_relative "xlsx_matchers/
|
15
|
+
require_relative "xlsx_matchers/filled_rows"
|
16
16
|
|
17
17
|
begin
|
18
18
|
require "roo"
|
@@ -33,7 +33,7 @@ module RSpec
|
|
33
33
|
# - have_excel_empty_row
|
34
34
|
# - have_excel_cells
|
35
35
|
# - have_excel_cell_value
|
36
|
-
# -
|
36
|
+
# - have_excel_filled_rows
|
37
37
|
module XlsxMatchers
|
38
38
|
# class Error < StandardError; end
|
39
39
|
|
@@ -63,8 +63,8 @@ module RSpec
|
|
63
63
|
CellValue.new(value)
|
64
64
|
end
|
65
65
|
|
66
|
-
def
|
67
|
-
|
66
|
+
def have_excel_filled_rows(count)
|
67
|
+
FilledRows.new(count)
|
68
68
|
end
|
69
69
|
end
|
70
70
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-xlsx_matchers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- drvn-eb
|
@@ -43,9 +43,9 @@ files:
|
|
43
43
|
- lib/rspec/xlsx_matchers/columns.rb
|
44
44
|
- lib/rspec/xlsx_matchers/empty_row.rb
|
45
45
|
- lib/rspec/xlsx_matchers/exact_match.rb
|
46
|
+
- lib/rspec/xlsx_matchers/filled_rows.rb
|
46
47
|
- lib/rspec/xlsx_matchers/in_column.rb
|
47
48
|
- lib/rspec/xlsx_matchers/in_row.rb
|
48
|
-
- lib/rspec/xlsx_matchers/rows_with_data.rb
|
49
49
|
- lib/rspec/xlsx_matchers/sheets.rb
|
50
50
|
- lib/rspec/xlsx_matchers/utils.rb
|
51
51
|
- lib/rspec/xlsx_matchers/version.rb
|