コード例 #1
0
ファイル: test_sami.py プロジェクト: ucsd-ets/pycaption
    def test_6digit_color_code_from_3digit_input(self):
        captions = SAMIReader().read(SAMPLE_SAMI.replace("#ffeedd", "#fed"))
        p_style = captions.get_style("p")

        self.assertEquals("#ffeedd", p_style[u'color'])
コード例 #2
0
ファイル: test_sami.py プロジェクト: rlaphoenix/pycaption
    def test_6digit_color_code_from_6digit_input(self, sample_sami):
        captions = SAMIReader().read(sample_sami)
        p_style = captions.get_style("p")

        assert "#ffeedd" == p_style['color']
コード例 #3
0
ファイル: test_sami.py プロジェクト: rlaphoenix/pycaption
    def test_6digit_color_code_from_3digit_input(self, sample_sami):
        sample_sami = deepcopy(sample_sami)
        captions = SAMIReader().read(sample_sami.replace("#ffeedd", "#fed"))
        p_style = captions.get_style("p")

        assert "#ffeedd" == p_style['color']
コード例 #4
0
    def test_6digit_color_code_from_6digit_input(self):
        captions = SAMIReader().read(SAMPLE_SAMI.decode(u'utf-8'))
        p_style = captions.get_style(u"p")

        self.assertEquals(u"#ffeedd", p_style[u'color'])
コード例 #5
0
ファイル: test_sami.py プロジェクト: scribu/pycaption
    def test_6digit_color_code_from_3digit_input(self):
        captions = SAMIReader().read(SAMPLE_SAMI.replace("#ffeedd", "#fed"))
        p_style = captions.get_style("p")

        self.assertEquals("#ffeedd", p_style['color'])
コード例 #6
0
ファイル: test_sami.py プロジェクト: sannies/pycaption
    def test_6digit_color_code_from_6digit_input(self):
        captions = SAMIReader().read(SAMPLE_SAMI)
        p_style = captions.get_style(u"p")

        self.assertEquals(u"#ffeedd", p_style[u'color'])
コード例 #7
0
ファイル: test_sami.py プロジェクト: vhx/pycaption
    def test_6digit_color_code_from_3digit_input(self):
        captions = SAMIReader().read(SAMPLE_SAMI.decode(u"utf-8").replace(u"#ffeedd", u"#fed"))
        p_style = captions.get_style(u"p")

        self.assertEquals(u"#ffeedd", p_style[u"color"])
コード例 #8
0
    def test_6digit_color_code_from_6digit_input(self):
        captions = SAMIReader().read(SAMPLE_SAMI)
        p_style = captions.get_style("p")

        self.assertEqual("#ffeedd", p_style['color'])