spreadsheet_architect 3.3.0 → 4.2.0

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.
@@ -1,21 +0,0 @@
1
- def assert_changed(expression, &block)
2
- if expression.respond_to?(:call)
3
- e = expression
4
- else
5
- e = lambda{ eval(expression, block.binding) }
6
- end
7
- old = e.call
8
- block.call
9
- assert_not_equal old, e.call
10
- end
11
-
12
- def assert_not_changed(expression, &block)
13
- if expression.respond_to?(:call)
14
- e = expression
15
- else
16
- e = lambda{ eval(expression, block.binding) }
17
- end
18
- old = e.call
19
- block.call
20
- assert_equal old, e.call
21
- end
@@ -1,11 +0,0 @@
1
- require 'test_helper'
2
-
3
- class RegressionsTest < ActiveSupport::TestCase
4
-
5
- test "XLSX" do
6
- end
7
-
8
- test "ODS" do
9
- end
10
-
11
- end