File tree 2 files changed +21
-6
lines changed
lib/ajax-datatables-rails
spec/ajax-datatables-rails
2 files changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -150,15 +150,15 @@ def draw_id
150
150
end
151
151
152
152
def raw_records_error_text
153
- <<- ERROR
153
+ <<~ ERROR
154
154
155
155
You should implement this method in your class and specify
156
156
how records are going to be retrieved from the database.
157
157
ERROR
158
158
end
159
159
160
160
def data_error_text
161
- <<- ERROR
161
+ <<~ ERROR
162
162
163
163
You should implement this method in your class and return an array
164
164
of arrays, or an array of hashes, as defined in the jQuery.dataTables
@@ -167,7 +167,7 @@ def data_error_text
167
167
end
168
168
169
169
def view_columns_error_text
170
- <<- ERROR
170
+ <<~ ERROR
171
171
172
172
You should implement this method in your class and return an array
173
173
of database columns based on the columns displayed in the HTML view.
Original file line number Diff line number Diff line change 20
20
context 'when method is not defined by the user' do
21
21
it 'raises an error' do
22
22
datatable = described_class . new ( sample_params )
23
- expect { datatable . view_columns } . to raise_error NotImplementedError
23
+ expect { datatable . view_columns } . to raise_error ( NotImplementedError ) . with_message ( <<~ERROR )
24
+
25
+ You should implement this method in your class and return an array
26
+ of database columns based on the columns displayed in the HTML view.
27
+ These columns should be represented in the ModelName.column_name,
28
+ or aliased_join_table.column_name notation.
29
+ ERROR
24
30
end
25
31
end
26
32
36
42
context 'when method is not defined by the user' do
37
43
it 'raises an error' do
38
44
datatable = described_class . new ( sample_params )
39
- expect { datatable . get_raw_records } . to raise_error NotImplementedError
45
+ expect { datatable . get_raw_records } . to raise_error ( NotImplementedError ) . with_message ( <<~ERROR )
46
+
47
+ You should implement this method in your class and specify
48
+ how records are going to be retrieved from the database.
49
+ ERROR
40
50
end
41
51
end
42
52
end
45
55
context 'when method is not defined by the user' do
46
56
it 'raises an error' do
47
57
datatable = described_class . new ( sample_params )
48
- expect { datatable . data } . to raise_error NotImplementedError
58
+ expect { datatable . data } . to raise_error ( NotImplementedError ) . with_message ( <<~ERROR )
59
+
60
+ You should implement this method in your class and return an array
61
+ of arrays, or an array of hashes, as defined in the jQuery.dataTables
62
+ plugin documentation.
63
+ ERROR
49
64
end
50
65
end
51
66
You can’t perform that action at this time.
0 commit comments