From c576995304fc3609cca0b7b92d1b2cd611ec82f5 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Wed, 16 Jan 2019 17:49:35 +0200 Subject: [ci skip] 3.1.10 release --- tests/codeigniter/libraries/Parser_test.php | 95 ----------------------------- 1 file changed, 95 deletions(-) delete mode 100644 tests/codeigniter/libraries/Parser_test.php (limited to 'tests/codeigniter/libraries/Parser_test.php') diff --git a/tests/codeigniter/libraries/Parser_test.php b/tests/codeigniter/libraries/Parser_test.php deleted file mode 100644 index 2a2348793..000000000 --- a/tests/codeigniter/libraries/Parser_test.php +++ /dev/null @@ -1,95 +0,0 @@ -parser = new CI_Parser(); - $this->ci_instance_var('parser', $this->parser); - } - - // -------------------------------------------------------------------- - - public function test_set_delimiters() - { - // Make sure default delimiters are there - $this->assertEquals('{', $this->parser->l_delim); - $this->assertEquals('}', $this->parser->r_delim); - - // Change them to square brackets - $this->parser->set_delimiters('[', ']'); - - // Make sure they changed - $this->assertEquals('[', $this->parser->l_delim); - $this->assertEquals(']', $this->parser->r_delim); - - // Reset them - $this->parser->set_delimiters(); - - // Make sure default delimiters are there - $this->assertEquals('{', $this->parser->l_delim); - $this->assertEquals('}', $this->parser->r_delim); - } - - // -------------------------------------------------------------------- - - public function test_parse_string() - { - $data = array( - 'title' => 'Page Title', - 'body' => 'Lorem ipsum dolor sit amet.' - ); - - $template = "{title}\n{body}"; - - $result = implode("\n", $data); - - $this->assertEquals($result, $this->parser->parse_string($template, $data, TRUE)); - } - - // -------------------------------------------------------------------- - - public function test_parse() - { - $this->_parse_no_template(); - $this->_parse_var_pair(); - $this->_mismatched_var_pair(); - } - - // -------------------------------------------------------------------- - - private function _parse_no_template() - { - $this->assertFalse($this->parser->parse_string('', '', TRUE)); - } - - // -------------------------------------------------------------------- - - private function _parse_var_pair() - { - $data = array( - 'title' => 'Super Heroes', - 'powers' => array(array('invisibility' => 'yes', 'flying' => 'no')) - ); - - $template = "{title}\n{powers}{invisibility}\n{flying}{/powers}\nsecond:{powers} {invisibility} {flying}{/powers}"; - - $this->assertEquals("Super Heroes\nyes\nno\nsecond: yes no", $this->parser->parse_string($template, $data, TRUE)); - } - - // -------------------------------------------------------------------- - - private function _mismatched_var_pair() - { - $data = array( - 'title' => 'Super Heroes', - 'powers' => array(array('invisibility' => 'yes', 'flying' => 'no')) - ); - - $template = "{title}\n{powers}{invisibility}\n{flying}"; - $result = "Super Heroes\n{powers}{invisibility}\n{flying}"; - - $this->assertEquals($result, $this->parser->parse_string($template, $data, TRUE)); - } - -} \ No newline at end of file -- cgit v1.2.3-24-g4f1b