Sha256: f5b94bc0b56ed359221d0a72f3b2083dad88e76201ddd023a1294bb5b1c4835a

Contents?: true

Size: 326 Bytes

Versions: 9

Compression:

Stored size: 326 Bytes

Contents

difficulty 1
description "You want to work on a piece of code that has the potential to break things, create the branch test_code"

setup do
  repo.init
  repo.commit_all("Initial commit")
end

solution do
  repo.branches.map(&:name).include?("test_code")
end

hint do
  puts "git branch is what you want to investigate"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
githug-0.2.2 levels/branch.rb
githug-0.2.1 levels/branch.rb
githug-0.2.0 levels/branch.rb
githug-0.1.8 levels/branch.rb
githug-0.1.7 levels/branch.rb
githug-0.1.6 levels/branch.rb
githug-0.1.5 levels/branch.rb
githug-0.1.4 levels/branch.rb
githug-0.1.3 levels/branch.rb