Example #1
0
 def test_simple_css_url_w_quotation(self):
     css = """background: url("background.png")"""
     self.assertEqual(utils.transform_css_url(css), """background: url("background.png?grayscale=1")""")
Example #2
0
 def test_simple_css_w_apostrophe(self):
     css = """background: url('background.png')"""
     self.assertEqual(utils.transform_css_url(css), """background: url('background.png?grayscale=1')""")
Example #3
0
 def test_simple_css_url_w_param(self):
     css = """background: url(background.png?param1=2)"""
     self.assertEqual(utils.transform_css_url(css), """background: url(background.png?param1=2&grayscale=1)""")