Skip to content

Commit

Permalink
Update test to support cross plattform
Browse files Browse the repository at this point in the history
  • Loading branch information
twenzel committed Sep 11, 2018
1 parent 17423ed commit 802f94d
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ public void Returns_Security_Infos()
_container.Introduction = "The ACME Security information.";
_container.Permission = "none";

_container.Build().Should().Be(@"# The ACME Security information.
Contact: mailto:[email protected]
Encryption: https://example.com/pgp-key.txt
Signature: https://example.com/.well-known/security.txt.sig
Policy: https://example.com/security-policy.html
Acknowledgments: https://example.com/hall-of-fame.html
Hiring: https://example.com/jobs.html
Permission: none");
_container.Build().Should().Be("# The ACME Security information." + Environment.NewLine +
"Contact: mailto:[email protected]" + Environment.NewLine +
"Encryption: https://example.com/pgp-key.txt" + Environment.NewLine +
"Signature: https://example.com/.well-known/security.txt.sig" + Environment.NewLine +
"Policy: https://example.com/security-policy.html" + Environment.NewLine +
"Acknowledgments: https://example.com/hall-of-fame.html" + Environment.NewLine +
"Hiring: https://example.com/jobs.html" + Environment.NewLine +
"Permission: none");
}
}

Expand Down

0 comments on commit 802f94d

Please sign in to comment.