# File test/test_repository.rb, line 30
30:         def test_new
31:             repo = Repository::Repository.new @repo_dir
32: 
33:             assert_not_nil repo
34:             assert_not_nil repo.path
35:             assert_not_nil repo.env_yaml
36:             assert_not_nil repo.originals_dir
37:             assert_not_nil repo.pending_mbox
38:             assert_not_nil repo.root_dir
39:         
40:             # check that all the right files are there
41:             assert File.exists?(repo.path)
42:             assert File.exists?(repo.env_yaml)
43:             assert File.exists?(repo.originals_dir)
44:             assert File.exists?(repo.pending_mbox)
45:             assert File.exists?(repo.root_dir)
46:         end