Sha256: 522276448672a6b9d18c95206ce99ff5c9b0e9f188d36c2ceb1a596381d819f6
Contents?: true
Size: 821 Bytes
Versions: 1
Compression:
Stored size: 821 Bytes
Contents
require 'helper' module Nutella class TestProject < MiniTest::Test def setup Nutella.executeCommand "new", ["test_project"] Dir.chdir NUTELLA_HOME + "test_project" end should "return true if the dir is a nutella project" do assert Nutella.currentProject.exist? end should "return false if the dir is not a nutella project" do Dir.chdir NUTELLA_HOME refute Nutella.currentProject.exist? end should "return the correct version of nutella as read from the project configuration file" do assert_equal File.open(NUTELLA_HOME+"VERSION", "rb").read, Nutella.currentProject.config["nutella_version"] end def teardown FileUtils.rm_rf(NUTELLA_HOME + "test_project") Dir.chdir NUTELLA_HOME end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nutella_framework-0.1.0 | test/config/test_project.rb |