Sha256: 25f3cf291292e4a652777626b7d484e0a667ea605dc47803c62f41f843047986

Contents?: true

Size: 323 Bytes

Versions: 1

Compression:

Stored size: 323 Bytes

Contents

Then /^1 \+ 1 == 2$/ do
  1 + 1 == 2
end

Then /cpu intensive operation/ do
  t1 = Time.now

  rep = 1000
  n   = 1000

  x = Array.new(n, 0)

  for j in 1..rep
    for i in 0..(n-1)
      x[i] += i
    end
  end
end

Then /io intensive operation/ do
  ArProfile.destroy_all
  1000.times do
    ArProfile.create!
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
baleen-0.1.1 poc/features/step_definitions/fake_test_steps.rb