Skip to content

Commit

Permalink
Adds a unit test for when there's a large comments area
Browse files Browse the repository at this point in the history
  • Loading branch information
haroon-sheikh committed Sep 1, 2020
1 parent 53b198e commit aefbfc9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
19 changes: 19 additions & 0 deletions env/_testdata/proj1/env/test/test.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
################################################################
#############################
################################################################
###############################################################
################################################################
##################################################################
##############################################################################
#####################################################
################################################################
##################################################################
################################################################
################################################################
####################################################################
################################################################
#########
#########################################################################
#################
#####################################
test_url=http://testurl
10 changes: 10 additions & 0 deletions env/env_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,16 @@ func (s *MySuite) TestLoadCustomEnvAlongWithOtherPropertiesSetInShell(c *C) {
c.Assert(os.Getenv("gauge_specs_dir"), Equals, "custom_specs_dir")
}

func (s *MySuite) TestLoadCustomEnvWithCommentsInPropertiesSet(c *C) {
os.Clearenv()
config.ProjectRoot = "_testdata/proj1"

e := LoadEnv("test")

c.Assert(e, Equals, nil)
c.Assert(os.Getenv("test_url"), Equals, "http://testurl")
}

func (s *MySuite) TestLoadMultipleEnv(c *C) {
os.Clearenv()
config.ProjectRoot = "_testdata/proj2"
Expand Down

0 comments on commit aefbfc9

Please sign in to comment.