We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b2ace commit 9c7897eCopy full SHA for 9c7897e
1 file changed
tests/test_nix.py
@@ -30,10 +30,10 @@ def test_public_domain(self):
30
l = NixLicense("Public Domain")
31
self.assertEqual(l.nix_code, 'publicDomain')
32
33
- def test_escape_quote(self):
+ def test_escape_quote(self):
34
l = NixLicense(r'license with "quotes" and \backslash" ');
35
self.assertEqual(l.nix_code, r'"license-with-\"quotes\"-and-\\backslash"')
36
-
37
+
38
l = NixLicense('some license with the "${" sequence');
39
self.assertEqual(l.nix_code, r'"some-license-with-the-\"\${\"-sequence"')
0 commit comments