Sha256: 83480e949c20b6b4bfd36b97fb970d6ce94631dcab60dbd695b4b354db85933d

Contents?: true

Size: 325 Bytes

Versions: 1

Compression:

Stored size: 325 Bytes

Contents

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

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

  rep = 10000
  n   = 10000

  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.0 poc/features/step_definitions/fake_test_steps.rb