emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#34207: closed (grantlee fails to build)


From: GNU bug Tracking System
Subject: bug#34207: closed (grantlee fails to build)
Date: Sat, 05 Sep 2020 20:49:02 +0000

Your message dated Sat, 5 Sep 2020 22:48:33 +0200
with message-id <20200905204833.GB24809@jurong>
and subject line Closing
has caused the debbugs.gnu.org bug report #34207,
regarding grantlee fails to build
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
34207: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=34207
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: grantlee fails to build Date: Sat, 26 Jan 2019 11:47:23 +0100 User-agent: mu4e 1.0; emacs 26.1
Grantlee has two test failures:

--8<---------------cut here---------------start------------->8---
FAIL!  : TestFilters::testDateBasedFilters(date01) Compared values are not the 
same
   Actual   (result): ""
   Expected (output): "01"
   Loc: 
[/tmp/guix-build-grantlee-5.1.0.drv-0/grantlee-5.1.0/templates/tests/testfilters.cpp(117)]
FAIL!  : TestFilters::testDateBasedFilters(date02) Compared values are not the 
same
   Actual   (result): ""
   Expected (output): "Jan. 1, 2008"
   Loc: 
[/tmp/guix-build-grantlee-5.1.0.drv-0/grantlee-5.1.0/templates/tests/testfilters.cpp(117)]
--8<---------------cut here---------------end--------------->8---

The tests in templates/tests/testfilters.cpp look like this:

 --8<---------------cut here---------------start------------->8---
  Dict dict;
 …
  QDateTime d(QDate(2008, 1, 1));

  dict.clear();
  dict.insert(QStringLiteral("d"), d);

  QTest::newRow("date01") << "{{ d|date:\"MM\" }}" << dict
                          << QStringLiteral("01") << NoError;
  QTest::newRow("date02") << QStringLiteral("{{ d|date }}") << dict
                          << d.toString(QStringLiteral("MMM. d, yyyy"))
                          << NoError;
--8<---------------cut here---------------end--------------->8---

The following test for “date03” passes:

--8<---------------cut here---------------start------------->8---
  dict.insert(QStringLiteral("d"), QStringLiteral("fail_string"));
  QTest::newRow("date03") << "{{ d|date:\"MM\" }}" << dict << QString()
                          << NoError;
--8<---------------cut here---------------end--------------->8---

IIUC this means: some non-date is injected and the template resulted in
the empty string.

--
Ricardo




--- End Message ---
--- Begin Message --- Subject: Closing Date: Sat, 5 Sep 2020 22:48:33 +0200
grantlee-5.2.0 is served as a substitute, so the problem is apparently
solved. Closing.

Andreas



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]