<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/test/readline/test_readline_history.rb, branch v3_2_11</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Call super method by teardown of tests of Reline as Readline</title>
<updated>2021-06-21T13:29:04+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2021-06-21T13:29:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=06d52249de50cef381fc6579d7a55f5a86322664'/>
<id>06d52249de50cef381fc6579d7a55f5a86322664</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Call Reline-specific method in helper file</title>
<updated>2021-06-21T13:26:11+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2021-06-21T13:24:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=215fd1bf2ca70c5853623a0575b34863cc165057'/>
<id>215fd1bf2ca70c5853623a0575b34863cc165057</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Call Reline.test_reset in teardown of tests for readline definitely</title>
<updated>2021-06-21T13:12:14+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2021-06-21T13:11:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=574c8ee9f1ad53ab85f9f97d43f405aa70ccbdb7'/>
<id>574c8ee9f1ad53ab85f9f97d43f405aa70ccbdb7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use test encoding for TestRelineAsReadline and TestRelineAsReadlineHistory</title>
<updated>2021-06-21T13:12:14+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2021-06-21T13:09:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=e11800e11461741b76c727d321850c04e63f8885'/>
<id>e11800e11461741b76c727d321850c04e63f8885</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Use Encoding.default_external for tests of Readline::HISTORY"</title>
<updated>2021-06-21T13:12:14+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2021-06-21T12:43:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9498ea9385c5e9b29daa8a5109c99507ebc326f9'/>
<id>9498ea9385c5e9b29daa8a5109c99507ebc326f9</id>
<content type='text'>
This reverts commit 089a26b0a619a649b1958061df8f21a6cdc6cacd.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 089a26b0a619a649b1958061df8f21a6cdc6cacd.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Encoding.default_external for tests of Readline::HISTORY</title>
<updated>2021-06-21T10:31:14+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2021-06-21T10:31:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=089a26b0a619a649b1958061df8f21a6cdc6cacd'/>
<id>089a26b0a619a649b1958061df8f21a6cdc6cacd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test/readline - allow ENV control of test class creation</title>
<updated>2020-02-22T01:01:09+00:00</updated>
<author>
<name>MSP-Greg</name>
<email>MSP-Greg@users.noreply.github.com</email>
</author>
<published>2020-02-19T14:11:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=da310356874ae30f793911223562ece2449a05e7'/>
<id>da310356874ae30f793911223562ece2449a05e7</id>
<content type='text'>
In ruby/ruby, the tests run on both readline &amp; reline by creating four test classes:
```
TestReadline
TestReadlineHistory

TestRelineAsReadline
TestRelineAsReadlineHistory
```

Reline inports the test files and uses them in its CI.  Adding the ENV control allows it to only run the `TestRelineAsReadline` classes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In ruby/ruby, the tests run on both readline &amp; reline by creating four test classes:
```
TestReadline
TestReadlineHistory

TestRelineAsReadline
TestRelineAsReadlineHistory
```

Reline inports the test files and uses them in its CI.  Adding the ENV control allows it to only run the `TestRelineAsReadline` classes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Check DONT_RUN_RELINE_TEST envvar</title>
<updated>2020-01-23T04:35:45+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2019-12-03T03:54:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=890200e85e5237d9656a6b72e792effbcaa5460a'/>
<id>890200e85e5237d9656a6b72e792effbcaa5460a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reline: Fix changed test results due to change to UTF-8 on Windows</title>
<updated>2020-01-21T12:26:58+00:00</updated>
<author>
<name>Lars Kanis</name>
<email>lars@greiz-reinsdorf.de</email>
</author>
<published>2020-01-18T20:22:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b0ca1fc21bbb9dac65a3b3f7b5935e691ece1501'/>
<id>b0ca1fc21bbb9dac65a3b3f7b5935e691ece1501</id>
<content type='text'>
In commit f8ea2860b0cac1aec79978e6c44168802958e8af the Reline encoding
for native windows console was changed to hardcoded UTF-8.
This caused failures in reline and readline tests, but they were hidden,
because parallel ruby tests incorrectly used Reline::ANSI as IOGate.
Tests failures were raised in single process mode, but not with -j switch.

This patch corrects encodings on native Windows console.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In commit f8ea2860b0cac1aec79978e6c44168802958e8af the Reline encoding
for native windows console was changed to hardcoded UTF-8.
This caused failures in reline and readline tests, but they were hidden,
because parallel ruby tests incorrectly used Reline::ANSI as IOGate.
Tests failures were raised in single process mode, but not with -j switch.

This patch corrects encodings on native Windows console.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove parent namespace from Readline test classes</title>
<updated>2019-05-17T17:32:25+00:00</updated>
<author>
<name>aycabta</name>
<email>aycabta@gmail.com</email>
</author>
<published>2019-05-17T17:32:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9858d74a128c1126f0d05ebe5c05a2e6b34ce0af'/>
<id>9858d74a128c1126f0d05ebe5c05a2e6b34ce0af</id>
<content type='text'>
The namespace "Readline" doesn't exist when running tests if readline.so
doesn't exist and Reline exists. So test classes shouldn't be at nested
namespaces under "Readline".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The namespace "Readline" doesn't exist when running tests if readline.so
doesn't exist and Reline exists. So test classes shouldn't be at nested
namespaces under "Readline".
</pre>
</div>
</content>
</entry>
</feed>
