aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2021-07-09basic-persp-header-line-format-default-value: new ert testMatthew White
Test whether disabling 'persp-mode' while in a buffer with a locally modified 'header-line-format' uses the latter's to update the global default value of 'header-line-format'. Because it shouldn't.
2021-07-08persp-test-with-persp: use delete, not delq, to remove stringsMatthew White
Strings comparison requires 'equal', not 'eq', i.e. 'delq' will not remove "main" (aka 'persp-initial-frame-name') from '("main" "A")'. Using 'delq', 'persp-test-with-persp' will try to improperly kill a scratch buffer named "*scratch* (main)", if 'persp-names' returns a list like '("main" "A")'.
2019-12-02Switched the test to lexical-binding as wellRyan Davis
2019-12-02Removed warnings that come up from byte compiling.Ryan Davis
This doesn't deal with lexical-let + cl.
2019-10-26Add a test for persp-state-save and persp-state-load.Constantine Vetoshev
2019-10-24Merge pull request #106 from nex3/zenspider/test-cleanupRyan Davis
Clean up buffer cleanup test code.
2019-10-24Extend persp-find-some to respect current perspective ordering when ↵Ryan Davis
persp-last nil.
2019-10-22Clean up buffer cleanup test code.Ryan Davis
* "main" -> persp-initial-frame-name. * use delq against persp-names directly. * mapc on kill-buffer + format.
2019-10-10Fix test suite bug.Constantine Vetoshev
When cleaning up perspectives, don't forget to remove their scratch buffers.
2019-10-10Merge pull request #81 from gcv/fix-persp-rename-scratchgcv
Rename perspective-specific scratch buffer when perspective is renamed
2019-10-02Add testing utilities. Add more basic feature tests.Constantine Vetoshev
2019-10-01Add a couple of very basic functionality tests.Constantine Vetoshev
2019-09-27Add a test.Constantine Vetoshev
2019-09-27Fix whitespace.Constantine Vetoshev
2019-09-27Add a test wrapper macro to reset persp environment between tests.Constantine Vetoshev
2019-09-27Refine issue #85 testNathaniel Nicandro
As per https://github.com/nex3/perspective-el/pull/85#issuecomment-535316131
2019-09-27Add test frameworkNathaniel Nicandro