fat_core 5.6.1 → 7.0.1

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,13 +0,0 @@
1
- require 'spec_helper'
2
- require 'fat_core/kernel'
3
-
4
- describe Kernel do
5
- it 'knows how to time a block of code' do
6
- expect {
7
- time_it 'do something' do
8
- (1..10_000_000).each { |k| k * k }
9
- 'hello'
10
- end
11
- }.to output(/Ran do something in/i).to_stdout
12
- end
13
- end