This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(describe-variable 'evil-emacs-state-map) | |
#("evil-emacs-state-map is a variable defined in `evil-states.el'. | |
Its value is shown below. | |
This variable may be risky if used as a file-local variable. | |
Documentation: | |
Keymap for Emacs state. | |
Value: (keymap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if Rails.env.test? | |
# Setup test indexes with 'test' prefix and run synchronously by waiting for index updates | |
Chewy.settings = Chewy.settings.reverse_merge( | |
prefix: 'test', | |
wait_for_status: 'yellow' | |
) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'chewy/rspec' | |
# Configure rspec to work with chewy | |
# | |
# By default, all chewy requests are ignored. This is important in case | |
# models (or factories by extension) contain after_commit hooks | |
# | |
# If a test or example group has chewy: true set on its metadata, then | |
# the example is run within the update strategy which immediately | |
# updates the index. Also, the index is purged before every test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
require "spec_helper" | |
RSpec.describe SchoolsIndex, chewy: true do | |
describe 'school model obersavation' do | |
it 'updates the index when a school is saved' do | |
school = FactoryGirl.build(:school) | |
expect { school.save! }.to update_index('schools') | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Overview | |
-------- | |
Initial state: object count: 362012 | |
Memory allocated outside heap (bytes): 55869045 | |
GC Stats: | |
-------- | |
count : 49 | |
heap_allocatable_pages : 977 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Total allocated: 8516317 bytes (74187 objects) | |
Total retained: 258945 bytes (1785 objects) | |
allocated memory by gem | |
----------------------------------- | |
3030171 sprockets-3.5.2 | |
2549709 2.3.0/lib | |
1143768 binding_of_caller-0.7.2 | |
605151 activesupport-4.2.5.2 | |
375346 actionview-4.2.5.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ObjectSpace stats: | |
TOTAL: 891027 | |
FREE: 422031 | |
T_STRING: 174702 | |
T_ARRAY: 114902 | |
T_IMEMO: 80413 | |
T_HASH: 61383 | |
T_DATA: 11324 | |
T_OBJECT: 10590 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Overview | |
-------- | |
Initial state: object count: 368347 | |
Memory allocated outside heap (bytes): 57326518 | |
GC Stats: | |
-------- | |
count : 57 | |
heap_allocatable_pages : 505 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Total allocated: 7829546 bytes (71706 objects) | |
Total retained: 260544 bytes (1806 objects) | |
allocated memory by gem | |
----------------------------------- | |
3030171 sprockets-3.5.2 | |
2549693 2.3.0/lib | |
604926 activesupport-4.2.5.2 | |
571117 binding_of_caller-0.7.2 | |
375394 actionview-4.2.5.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ObjectSpace stats: | |
TOTAL: 1210591 | |
FREE: 719993 | |
T_STRING: 186938 | |
T_ARRAY: 116441 | |
T_IMEMO: 82989 | |
T_HASH: 62044 | |
T_DATA: 13054 | |
T_OBJECT: 12891 |
OlderNewer