rspec-xlsx_matchers 0.1.5 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d8b4869cb9ba13521a0fb6c7409529b38d851ec128f14a3cd950af6d068d06f
4
- data.tar.gz: f96fcd5425130346a4d1b87b74cf30750aba7154666de460957254cdb773efd7
3
+ metadata.gz: 3194c4fdcb2c56345d805ec5fc8a2e14d80311363738c155e1bef5d56d63929c
4
+ data.tar.gz: 9cbd5ed284576fa3482138931566c491ad906bc4bfb4311a0cdecfd1c0e30bdd
5
5
  SHA512:
6
- metadata.gz: 9c497074ce7506bef2dfe726e1059a13a90abb349faf1968453919af0554efe316fe5b3fe22c92b11602c3a545e457e8aa28e3ec43d7407398ce3ed8a2bd67fd
7
- data.tar.gz: 7adccbe837d24b02415a52f4087a132a4554dfccb139ae53fb493ed309d358009cab17f5e399dbc2846b5023fc9d0f72f74528c3976ec541002823b4d0d3200b
6
+ metadata.gz: 3fd3eda4f88b0a0a7af9048f8d3aa8376c1a9cc2338cf2a09db2030e8715463e27addff64bc0fedf7ebb37b7c8ba724cd7e9af1c08000727d6efd0dcdfa29a99
7
+ data.tar.gz: eda173dc8ccc0052bc66fb5013a206c03f25cd11cc5753bfcd622b52ebc5d9c2fc3dc14279f28300e45f244a5da119c245627a5230e6b71de5961f307ab52f7b
@@ -3,7 +3,7 @@
3
3
  module RSpec
4
4
  module XlsxMatchers
5
5
  # filled rows count matcher
6
- class RowsWithData < BaseSheet
6
+ class FilledRows < BaseSheet
7
7
  attr_reader :expected_filled_row_count
8
8
 
9
9
  def initialize(count)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RSpec
4
4
  module XlsxMatchers
5
- VERSION = "0.1.5"
5
+ VERSION = "0.1.6"
6
6
  end
7
7
  end
@@ -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/rows_with_data"
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
- # - have_excel_rows_with_data
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 have_excel_rows_with_data(count)
67
- RowsWithData.new(count)
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.5
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